home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / mandrake_MDKSA-2004-137.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  98 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. # This plugin text was extracted from Mandrake Linux Security Advisory MDKSA-2004:137-1
  5. #
  6.  
  7.  
  8. if ( ! defined_func("bn_random") ) exit(0);
  9. if(description)
  10. {
  11.  script_id(15793);
  12.  script_version ("$Revision: 1.2 $");
  13.  
  14.  name["english"] = "MDKSA-2004:137-1: libxpm4";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = "
  19. The remote host is missing the patch for the advisory MDKSA-2004:137-1 (libxpm4).
  20.  
  21.  
  22.  
  23. The XPM library which is part of the XFree86/XOrg project is used by several
  24. GUI applications to process XPM image files.
  25.  
  26. A source code review of the XPM library, done by Thomas Biege of the SuSE
  27. Security-Team revealed several different kinds of bugs. These bugs include
  28. integer overflows, out-of-bounds memory access, shell command execution, path
  29. traversal, and endless loops.
  30.  
  31. These bugs can be exploited by remote and/or local attackers to gain access to
  32. the system or to escalate their local privileges, by using a specially crafted
  33. xpm image.
  34.  
  35. Update:
  36.  
  37. The previous libxpm4 update had a linking error that resulted in a missing
  38. s_popen symbol error running applications dependant on the library. In
  39. addition, the file path checking in the security updates prevented some
  40. applications, like gimp-2.0 from being able to save xpm format images.
  41.  
  42. Updated packages are patched to correct all these issues.
  43.  
  44.  
  45.  
  46. Solution : http://www.mandrakesoft.com/security/advisories?name=MDKSA-2004:137-1
  47. Risk factor : High";
  48.  
  49.  
  50.  
  51.  script_description(english:desc["english"]);
  52.  
  53.  summary["english"] = "Check for the version of the libxpm4 package";
  54.  script_summary(english:summary["english"]);
  55.  
  56.  script_category(ACT_GATHER_INFO);
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  59.  family["english"] = "Mandrake Local Security Checks";
  60.  script_family(english:family["english"]);
  61.  
  62.  script_dependencies("ssh_get_info.nasl");
  63.  script_require_keys("Host/Mandrake/rpm-list");
  64.  exit(0);
  65. }
  66.  
  67. include("rpm.inc");
  68. if ( rpm_check( reference:"libxpm4-3.4k-27.3.100mdk", release:"MDK10.0", yank:"mdk") )
  69. {
  70.  security_hole(0);
  71.  exit(0);
  72. }
  73. if ( rpm_check( reference:"libxpm4-devel-3.4k-27.3.100mdk", release:"MDK10.0", yank:"mdk") )
  74. {
  75.  security_hole(0);
  76.  exit(0);
  77. }
  78. if ( rpm_check( reference:"libxpm4-3.4k-28.2.101mdk", release:"MDK10.1", yank:"mdk") )
  79. {
  80.  security_hole(0);
  81.  exit(0);
  82. }
  83. if ( rpm_check( reference:"libxpm4-devel-3.4k-28.2.101mdk", release:"MDK10.1", yank:"mdk") )
  84. {
  85.  security_hole(0);
  86.  exit(0);
  87. }
  88. if ( rpm_check( reference:"libxpm4-3.4k-27.3.92mdk", release:"MDK9.2", yank:"mdk") )
  89. {
  90.  security_hole(0);
  91.  exit(0);
  92. }
  93. if ( rpm_check( reference:"libxpm4-devel-3.4k-27.3.92mdk", release:"MDK9.2", yank:"mdk") )
  94. {
  95.  security_hole(0);
  96.  exit(0);
  97. }
  98.